Triple Constructor

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Creates a new triple with given elements.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public Triple(
	TFirst first,
	TSecond second,
	TThird third
)
Visual Basic (Declaration)
Public Sub New ( _
	first As TFirst, _
	second As TSecond, _
	third As TThird _
)
Visual C++
public:
Triple (
	TFirst first, 
	TSecond second, 
	TThird third
)

Parameters

first
TFirst
The first element of the triple.
second
TSecond
The second element of the triple.
third
TThird
The third element of the triple.

See Also